home *** CD-ROM | disk | FTP | other *** search
/ SIGGRAPH 2002 Course Notes / SIGGRAPH 2002 - Course Notes - Disc 1.iso / pc / notes / 18 / supplemental_material / SVG_Ex / events / mouseover2.svg < prev   
Encoding:
Extensible Markup Language  |  2001-12-06  |  578 b   |  17 lines

  1. <?xml version="1.0" encoding="iso-8859-1"?>
  2. <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN"
  3.      "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
  4. <svg xmlns="http://www.w3.org/2000/svg">
  5.   <script type="text/ecmascript"> <![CDATA[ 
  6.       function text_on(evt,which) { 
  7.          doc = evt.target.ownerDocument;
  8.          title = doc.getElementById(which);
  9.          node = title.getChildNodes().item(0);
  10.          node.setData(7);
  11.       } 
  12.    ]]> </script> 
  13.  
  14.   <text id="me" onmouseover="text_on(evt,'me')" x="75px" y="50px">MouseOverMe  
  15.   </text>
  16. </svg>
  17.